home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 2
/
Amiga Tools 2.iso
/
tools
/
jade
/
configure
< prev
next >
Wrap
Text File
|
1995-03-09
|
354b
|
18 lines
#!/bin/sh
# Configure -- makes the src/config.h symbolic link.
if [ $# -ne 1 ]; then
echo "Usage: $0 CONFIG-NAME"
echo " $0 -a"
else
if [ $1 = -a ]; then
sys=`uname -s`
else
sys=$1
fi
echo "rm -f src/config.h"
rm -f src/config.h
echo "ln -s configs/config.h.$sys src/config.h"
ln -s configs/config.h.$sys src/config.h
fi